home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1999 Spring / macformat-077.iso / Shareware Plus / Development / SpriteWorld 2.2 / SpriteWorld Examples / Stars / Stars.h < prev    next >
Encoding:
Text File  |  1996-12-04  |  572 b   |  33 lines  |  [TEXT/CWIE]

  1. ///--------------------------------------------------------------------------------------
  2. // Stars.h
  3. //
  4. // By: Vern Jensen
  5. ///--------------------------------------------------------------------------------------
  6.  
  7.  
  8. #ifndef __WINDOWS__
  9. #include <Windows.h>
  10. #endif
  11.  
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17.  
  18. void    main( void );
  19. void    CreateSpriteWorld( void );
  20. void    CreateSprites( void );
  21.  
  22. void    RunAnimation( void );
  23. void    ShutDown( void );
  24. SW_FUNC void BallSpriteMoveProc(SpritePtr ballSpriteP);
  25.  
  26. void    SetUpStars( void );
  27. void    MoveStars( void );
  28.  
  29.  
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33.